Micron Document
🎖️GitЯра🎖️

Commit 1c418a57ea09b0c6af6fde22e9d0ddee16b53e7a


Parents : bce8bba
Author : Austin <vidplace7@gmail.com>
Signature : Signature validation error
Date : 2026-05-12T06:56:11-04:00
Committer : GitHub <noreply@github.com>
Date : 2026-05-12T05:56:11-05:00

Actions: fix Flatpak source file patterns for jq (#5415)

Co-authored-by: Copilot <copilot@github.com>

Changes

2 files changed, 6 insertions(+), 6 deletions(-)


Diff

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 261937802b..24cd59e577 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -391,14 +391,14 @@ jobs:
--no-configuration-cache --refresh-dependencies --no-parallel
- name: List Flatpak source files
- run: ls -R flatpak-sources*.json
+ run: ls -R flatpak-sources-*.json
- name: Upload Flatpak source artifacts
if: always()
uses: actions/upload-artifact@v7
with:
name: flatpak-multisrc-${{ runner.arch }}
- path: flatpak-sources*.json
+ path: flatpak-sources-*.json
retention-days: 1
release-flatpak-src:
@@ -413,11 +413,11 @@ jobs:
merge-multiple: true
- name: List Flatpak source files
- run: ls -R flatpak-sources*.json
+ run: ls -R flatpak-sources-*.json
- name: Combine Flatpak source files
run: >
- jq -s 'add | unique_by(.dest + "/" + .["dest-filename"])' flatpak-sources*.json
+ jq -s 'add | unique_by(.dest + "/" + .["dest-filename"])' flatpak-sources-*.json
> flatpak-sources.json
- name: Upload combined Flatpak source artifact

diff --git a/.github/workflows/reusable-check.yml b/.github/workflows/reusable-check.yml
index eb579119f9..6e0c836500 100644
--- a/.github/workflows/reusable-check.yml
+++ b/.github/workflows/reusable-check.yml
@@ -557,12 +557,12 @@ jobs:
./gradlew :build-logic:convention:flatpakGradleGenerator flatpakGradleGenerator
--no-configuration-cache --refresh-dependencies --no-parallel
- - run: ls -lah flatpak-sources*.json
+ - run: ls -lah flatpak-sources-*.json
- name: Upload Flatpak Sources
if: ${{ inputs.upload_artifacts }}
uses: actions/upload-artifact@v7
with:
name: flatpak-sources-${{ runner.arch }}
- path: flatpak-sources*.json
+ path: flatpak-sources-*.json
retention-days: 7

Served by rngit 1.5.4 - Generated in 0.05s